home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_basi / pa16v305.zip / KNOWNBUG.TXT < prev    next >
Text File  |  1996-07-04  |  2KB  |  62 lines

  1. Known bugs and limitations in Project Analyzer 3.0.x
  2.  
  3. Please let me know of any bugs you find.
  4.  
  5. ==================================
  6. Known misbehaviour and limitations
  7. ==================================
  8.  
  9. - The size of variable, constant and procedure names is restricted to 64
  10.   characters. Longer names are truncated.
  11. - Long lines don't word wrap on most reports
  12. - Reports to .wri files look ugly - use .txt or .rtf instead
  13. - Some add-in functions (like ConnectAddIn) may show "dead"
  14. - Constant references in the (declarations) section are not interpreted. 
  15.   This may cause the following code to show WM_USER as a "dead" const:
  16.   Global Const WM_USER = xyz
  17.   Global Const WM_HELLO = WM_USER + 1
  18. - ReDim MyTable(N) inside a procedure may be interpreted 
  19.   as a new local array, even if it's a dynamic global array. 
  20.   This is not a problem with module-level arrays.
  21.  
  22. - MyClass.MyProperty = 987      works OK (MyProperty Let), but
  23.   MyClass(123).MyProperty = 987 doesn't (thinks it's MyProperty Get)
  24.                                 Problem with subscript.
  25.  
  26. - In the hypertext window, if you have two different definitions with the
  27.   same name (e.g. Form1.MyVar and Form2.MyVar), the program may
  28.   highlight the both in red when the other one is highlighted
  29. - May produce OUT OF MEMORY or SUBSCRIPT OUT OF RANGE during analysis of
  30.   extremely large projects.
  31.   *** PLEASE LET ME KNOW IF YOU EXPERIENCE THESE ERRORS ***
  32.  
  33. =======================
  34. Unsupported VB 4.0 code
  35. =======================
  36.  
  37. - Compiler directives (#if xyz then)
  38. - Line continuation character "_"
  39.  
  40. ========================
  41. Deficiencies in FRX view
  42. ========================
  43.  
  44. - Shows only graphical data.
  45.   Textual data (like the List property of a ListBox) is not shown.
  46. - Picture types may look strange, like (Icon) when it isn't an icon
  47. - Doesn't understand if one control has more than 1 picture
  48.   => Shows only one picture
  49. - Understands the following properties: .Picture, .Icon and .MouseIcon
  50. - Can't handle SSCommand.Picture. Seems to me these pictures
  51.   are stored differently
  52.  
  53. ================
  54. For best results
  55. ================
  56.  
  57. - Always declare your local variables (use Option Explicit)
  58. - Always save your files as text (VB 3.0)
  59. - Use MS Word as RTF editor
  60. - Wait for the analysis to end completely (it has 2 phases)
  61.  
  62.